71ec5703b75a12af84e6c85d926cd90bcd87521e,pax-web-itest/pax-web-itest-container/pax-web-itest-container-jetty/src/test/java/org/ops4j/pax/web/itest/jetty/WarJSFFaceletsIntegrationTest.java,WarJSFFaceletsIntegrationTest,configure,#,48
Before Change
@Configuration
public static Option[] configure() {
return combine(
configureJetty(),
systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level")
.value("INFO"),
mavenBundle().groupId("commons-beanutils")
.artifactId("commons-beanutils").version(asInProject()),
mavenBundle().groupId("commons-collections")
.artifactId("commons-collections")
.version(asInProject()),
mavenBundle().groupId("commons-codec")
.artifactId("commons-codec").version(asInProject()),
mavenBundle()
.groupId("org.apache.servicemix.bundles")
.artifactId(
"org.apache.servicemix.bundles.commons-digester")
.version("1.8_4"),
mavenBundle()
.groupId("org.apache.servicemix.specs")
.artifactId(
"org.apache.servicemix.specs.jsr303-api-1.0.0")
.version(asInProject()),
mavenBundle().groupId("org.apache.servicemix.specs")
.artifactId("org.apache.servicemix.specs.jsr250-1.0")
.version(asInProject()),
// mavenBundle().groupId("org.apache.servicemix.bundles")
// .artifactId("org.apache.servicemix.bundles.xerces")
// .version(asInProject()),
mavenBundle().groupId("org.apache.geronimo.bundles")
.artifactId("commons-discovery").version("0.4_1"),
mavenBundle().groupId("org.apache.myfaces.core")
.artifactId("myfaces-api").version(VersionUtil.getMyFacesVersion()),
mavenBundle().groupId("org.apache.myfaces.core")
.artifactId("myfaces-impl")
.version(VersionUtil.getMyFacesVersion())
// mavenBundle().groupId("org.apache.myfaces.core")
// .artifactId("myfaces-bundle").version(getMyFacesVersion())
);
}
After Change
@Configuration
public static Option[] configure() {
return combine(
configureJetty(),
systemProperty("org.ops4j.pax.logging.DefaultServiceLog.level").value("INFO"),
TestConfiguration.jsfBundlesWithDependencies()
);
}